Welcome![Sign In][Sign Up]
Location:
Search - MAX MIN

Search list

[Othermmantsystem

Description: This is an implementation for the max min ant system applied to the University Course Timetabling
Platform: | Size: 25600 | Author: wit77 | Hits:

[AI-NN-PRMMAS

Description: 最大最小蚁群算法求解TSP的实现在基本算法的基础上做少许更改即可。 1》初始化路段信息素为最大值 2》在增加信息素时只更新最优路径 3》在挥发信息素时,将所有路段的信息素值限制在最大最小值之间-Max Min Ant Colony
Platform: | Size: 55296 | Author: rock | Hits:

[Graph Recognizeoriginal_GraphCut

Description: An Experimental Comparison of Min-Cut/Max-Flow Algorithms for Energy Minimization in Vision
Platform: | Size: 586752 | Author: pucho | Hits:

[Othershuliejicha

Description: 数列极差问题,在黑板上写了N个正整数组成的一个数列,进行如下操作: 每次擦去其中的两个数a和b,然后在数列中加入一个数a×b+1,如此下去直至黑板上 剩下一个数,在所有按这种操作方式最后得到的数中,最大的为max,最小的为min, 则该数列的极差定义为M=max-min。 -Series of very poor question written on the blackboard a positive integer N composed of a series, the following: two of them wipe each time the number of a, b, and then add a series number of a × b+1, it goes on until the rest of the board of a number, according to this mode of operation in all the resulting numbers, the biggest for the max, the smallest for the min, then the series range is defined as M = max-min.
Platform: | Size: 2785280 | Author: betty | Hits:

[matlabplot3k

Description: Generate a 3D point plot of L=(x,y,z) using the values in the vector c to determine the color of each point. If c is empty, then z (column 3 of L) is used to color the plot. The data points are sorted so that plot3 is only called once for each group of points that map to the same color. The upper and lower limits of the color range (and the z axis) can be defined with crange. This is useful for creating a series of plots with the same coloring. The colormap (but not the colorbar) is flipped upside down if crange is given as [max min] instead of [min max]. The figure handle is returned if an output argument is given.-Generate a 3D point plot of L=(x,y,z) using the values in the vector c to determine the color of each point. If c is empty, then z (column 3 of L) is used to color the plot. The data points are sorted so that plot3 is only called once for each group of points that map to the same color. The upper and lower limits of the color range (and the z axis) can be defined with crange. This is useful for creating a series of plots with the same coloring. The colormap (but not the colorbar) is flipped upside down if crange is given as [max min] instead of [min max]. The figure handle is returned if an output argument is given.
Platform: | Size: 4096 | Author: Jeff | Hits:

[Algorithmmax-min

Description: 编写一个程序,读入5个整数,然后确定并显示这组数中的最大整数和最小整数。-Write a program that reads five integers, then determine and display this group of the number of the biggest integer and smallest integer.
Platform: | Size: 2048 | Author: 孙丹丹 | Hits:

[Graph RecognizeMaxFlowcpp

Description: max flow min cut in c++ code
Platform: | Size: 1024 | Author: ansu | Hits:

[Mathimatics-Numerical algorithmsmax--min-

Description: 给定一个数组,数组的个数为n,求这n个数的最大值、最小值-Given an array of the number of the n, n find the number of maximum, minimum
Platform: | Size: 1024 | Author: 伍凤云 | Hits:

[Other20042

Description: 04武大复试题 printf("最大数为: d\n最小数为: d\n中间数为: d\n",max,min,midle) -04 Wu large complex questions printf (" Maximum number: d \ n Minimum number: d \ n the middle number: d \ n" , max, min, midle)
Platform: | Size: 302080 | Author: 沈乐 | Hits:

[matlabmax-flow-min-cut-theorem

Description: 初学最大流最小割的几个很有用的参考资料,详细介绍了它的应用,很有帮助哦!-Maximum flow minimum cut beginner several useful references, details of its application, very helpful Oh!
Platform: | Size: 4034560 | Author: wade | Hits:

[matlabresource-allocation-of-OFDM

Description: OFDM系统中的资源调度算法,轮训算法与最大信干比算法-the resource scheduling algorithms of OFDM system
Platform: | Size: 2048 | Author: 王鹏博 | Hits:

[JSP/JavaProgram-for-Min

Description: /* Program for Min, Max value of data types*/ }
Platform: | Size: 8192 | Author: NGABO | Hits:

[AI-NN-PRMMACA

Description: 这是基于VB的关于最大最小蚁群算法,希望对大家有所帮助!-Max-Min ant colony algorithm
Platform: | Size: 142336 | Author: hjwei | Hits:

[Data structsCalculateRange

Description: 数列极差问题:给定n个正整数数列,进行如下操作:每次删去两个数 a和b,添加1个数 a*b+1,直到只剩1个数N。在所有的这样的N中,有1个最大Max的和最小的Min,M=Max-Min是极差。计算 M 运行环境:vs2008-Series poor problem: Given n positive integers sequence, proceed as follows: each time deleting the two numbers a and b, add a number a* b+1, until only one number N. N in all of this, there is a maximum and minimum Max Min, M = Max-Min is very poor. Calculate M operating environment: vs2008
Platform: | Size: 181248 | Author: Lawrence | Hits:

[Special Effectschenggongchengxu

Description: rgb to HSV,很有用,调试成功,可以应用-rgb to HSV,#include "stdafx.h" #include <iostream.h> void main(float R, float G, float B, float& H, float& S, float&V) { // r,g,b values are from 0 to 1 // h = [0,360], s = [0,1], v = [0,1] // if s == 0, then h =-1 (undefined) float min, max, delta,tmp tmp = R>G?G:R min = tmp>B?B:tmp tmp = R>G?R:G max = tmp>B?tmp:B V = max // v delta = max- min if( max != 0 ) S = delta/max // s else { // r = g = b = 0 // s = 0, v is undefined S = 0 H = 0 return } if (delta == 0){ H = 0 return } else if(R == max){ if (G >= B) H = (G- B)/delta // between yellow & magenta else H = (G- B)/delta+ 6 } else if( G == max ) H = 2+ ( B- R )/delta // between cyan & yellow else if (B == ma
Platform: | Size: 1024 | Author: 陈晓 | Hits:

[Mathimatics-Numerical algorithmsMAX-AND-MIN

Description: 输出各种数据类型的最大值、最小值。包括整形,长整形,浮点型等等。-output max and min,for example int,long.float,double and so on.
Platform: | Size: 271360 | Author: 戴呆 | Hits:

[Special Effectsadsfsadf

Description: C语言图像旋转_放大_移动程序代码 利用C语言实现图像的旋转 放大 移动-C max min progbelmaljdkf
Platform: | Size: 7168 | Author: abc | Hits:

[Delphi VCLmax-min

Description: it is a simple pascal program source code
Platform: | Size: 7168 | Author: khoerul amri | Hits:

[matlabensemble-toolbox

Description: a very useful toolbox for classifiers combination: majority voting, max, min, average mesures and others
Platform: | Size: 2676736 | Author: ssss | Hits:

[MiddleWaremydll

Description: 动态链接库示范,包括头文件和源文件,本文以sum、max、min函数为例-The dynamic link library demonstration, including the header and source files, this paper sum, max, min function as an example
Platform: | Size: 7176192 | Author: 渺小的秋叶 | Hits:
« 1 2 3 4 56 7 8 9 10 ... 21 »

CodeBus www.codebus.net